$(document).ready(function(){ $(".gallery .button").click(function(){ $(this).addClass("active").siblings().removeClass("active"); var filter = $(this).attr("data-filter"); if (filter == "all"){ $(".gallery .image").show(400); } else{ $(".gallery .image").not("."+filter).hide(200); $(".gallery .image").filter("."+filter).show(400); } }) //MAGNIFIC-POPUP $(".gallery").magnificPopup({ delegate: "a", type: "image", removalDelay: 500, //delay removal by X to allow out-animation gallery:{ enabled: true }, }) //MAGNIFIC-POPUP $(".footer-gallery").magnificPopup({ delegate: "a", type: "image", removalDelay: 500, //delay removal by X to allow out-animation gallery:{ enabled: true }, }) });